Click here to Skip to main content
15,899,126 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
HI ,
I want to know how i implement New User Email verification i.e i send an email to user with a link and when the user click that link the user's email verfied and unlock his account to use in Asp.net but i am not using CreateUserWizard control.
plz help me :)
thnx in advance
Posted

1 solution

The way to do this, is to write code. What do YOU think the code needs to do ? I'd guess that it needs to email the user and expect them to reply. Have you seen this done on the web ? It seems to me that the way it would work, is that you'd create a code, perhaps a GUID, and store it against the email address in your DB. You'd send a link to a verification page that passes in the email again and this guid ( so there's a pair of values people need to match, and no-one can do it at random ). Then, you'd look those up in that page, and mark that address verified.

This is a bit of pretty simple logic, you should consider trying to think for yourself before asking us questions that can be answered with simple observation and common sense. If you can't work out enough to have a starting idea on something like this, you're the last person I'd want writing code to deal with security and user verification on my website.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900